home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_spag.c < prev    next >
C/C++ Source or Header  |  1987-05-06  |  168b  |  11 lines

  1. #include <dos.h>
  2.  
  3. void crt_set_page( page ) int page;
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.h.ah = 5;
  8.     regs.h.al = page;
  9.     int86( 0x10, ®s, ®s );
  10. }
  11.